home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / xsw / include / libmem.h < prev    next >
Text File  |  1995-05-09  |  2KB  |  62 lines

  1. /*
  2.  *    @(#) libmem.h 1.2 92/09/30 
  3.  */
  4. /***************************************************************************
  5.  *
  6.  *    Copyright (c) 1990        The Santa Cruz Operation, Inc.
  7.  *
  8.  *    All rights reserved.  No part of this program or publication may be
  9.  *    reproduced, transmitted, transcribed, stored in a retrieval system,
  10.  *    or translated into any language or computer language, in any form or
  11.  *    by any means, electronic, mechanical, magnetic, optical, chemical,
  12.  *    biological, or otherwise, without the prior written permission of:
  13.  *    
  14.  *        The Santa Cruz Operation , Inc.        (408) 425-7222
  15.  *        400 Encinal St., Santa Cruz, California 95060 USA
  16.  *
  17.  **************************************************************************/
  18. /*
  19.  * Modificaton History
  20.  *
  21.  * S001, 01-Jan-93, rickra
  22.  *      Did some minor clean up.
  23.  * S000, 30-Sep-92, rickra
  24.  *     Added copyright and modification history
  25.  */
  26. /*+-----------------------------------------------------------------------
  27.     libmem.h
  28.     ...!{gatech,emory}!n4hgf!wht
  29. ------------------------------------------------------------------------*/
  30. /*+:EDITS:*/
  31. /*:09-25-1990-05:11-wht@n4hgf-release heh-heh x0.22 preliminary */
  32. /*:09-15-1990-06:33-wht@n4hgf-adopt u386mon libraries */
  33. /*:08-10-1990-14:12-jmd@p1so/wht@n4hgf-2.20-add Tandem Integrity S2 */
  34. /*:08-07-1990-14:24-wht@n4hgf-nba@sysware.sysware.dk S5R31 updates */
  35. /*:08-02-1990-15:36-wht@n4hgf-2.12-old curses hacks+minor 3.2 formalizations */
  36. /*:07-28-1990-18:06-wht@n4hgf-2.10 release */
  37. /*:06-27-1990-01:57-wht@n4hgf-1.10-incorporate suggestions from alpha testers */
  38. /*:06-25-1990-04:14-wht@n4hgf-1.02-better error handling */
  39. /*:06-24-1990-20:53-wht@n4hgf-v1.01-add ISC support thanks to peter@radig.de */
  40. /*:06-21-1990-14:26-r@n4hgf-version x0.12 seems bug free */
  41. /*:10-28-1988-14:46-afterlint-creation */
  42.  
  43. #ifndef BUILDING_LINT_ARGS
  44. #ifdef LINT_ARGS
  45.  
  46. /* libmem.c */
  47. void minit(int );
  48. void mread(char  *,long ,int );
  49. void mwrite(long ,char  *,int );
  50.  
  51. #else        /* compiler doesn't mnow about prototyping */
  52.  
  53. /* libmem.c */
  54. void minit();
  55. void mread();
  56. void mwrite();
  57.  
  58. #endif /* LINT_ARGS */
  59. #endif /* BUILDING_LINT_ARGS */
  60.  
  61. /* end of libmem.h */
  62.